home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / man / Makefile < prev    next >
Makefile  |  1993-06-18  |  1KB  |  74 lines

  1. #### Makefile for the Emacs User's Manual.
  2. #### Just a few targets required by the coding standards.
  3.  
  4. info: ../info/emacs ../info/cl ../info/forms ../info/vip
  5.  
  6. dvi: emacs.dvi cl.dvi forms.dvi vip.dvi
  7. .texi.dvi:
  8.     tex $<
  9.  
  10. EMACSSOURCES= \
  11.     emacs.texi \
  12.     screen.texi \
  13.     commands.texi \
  14.     entering.texi \
  15.     basic.texi \
  16.     undo.texi \
  17.     mini.texi \
  18.     m-x.texi \
  19.     help.texi \
  20.     mark.texi \
  21.     killing.texi \
  22.     regs.texi \
  23.     display.texi \
  24.     search.texi \
  25.     fixit.texi \
  26.     files.texi \
  27.     buffers.texi \
  28.     windows.texi \
  29.     frames.texi \
  30.     major.texi \
  31.     indent.texi \
  32.     text.texi \
  33.     programs.texi \
  34.     building.texi \
  35.     abbrevs.texi \
  36.     picture.texi \
  37.     sending.texi \
  38.     rmail.texi \
  39.     dired.texi \
  40.     calendar.texi \
  41.     misc.texi \
  42.     custom.texi \
  43.     trouble.texi \
  44.     cmdargs.texi \
  45.     anti.texi \
  46.     gnu.texi \
  47.     glossary.texi
  48.  
  49. ../info/emacs: ${EMACSSOURCES}
  50.     makeinfo emacs.texi
  51. emacs.dvi: ${EMACSSOURCES}
  52.  
  53. ../info/cl: cl.texinfo
  54.     makeinfo cl.texinfo
  55. cl.dvi: cl.texi
  56.  
  57. ../info/forms: forms.texinfo
  58.     makeinfo forms.texinfo
  59. forms.dvi: forms.texi
  60.  
  61. ../info/vip: vip.texinfo
  62.     makeinfo vip.texinfo
  63. vip.dvi: vip.texi
  64.  
  65. mostlyclean:
  66.     rm -f *.log *.cp *.fn *.ky *.pg *.vr *.o core
  67. clean: mostlyclean
  68.     rm -f *.dvi
  69. distclean: clean
  70.     rm -f texindex
  71. realclean: distclean
  72.     rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs
  73.     rm -f ../info/emacs* ../info/cl* ../info/forms* ../info/vip*
  74.